projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2502581
)
(etags-file-of-tag): Fix looking-at regexp.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 29 Sep 1996 22:58:23 +0000
(22:58 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 29 Sep 1996 22:58:23 +0000
(22:58 +0000)
lisp/progmodes/etags.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/etags.el
b/lisp/progmodes/etags.el
index 62097047dd93bbe0100366655b6eee32b7770dc5..aefa78c33b19cde2640dd55b26a7ca7b14dcc5fa 100644
(file)
--- a/
lisp/progmodes/etags.el
+++ b/
lisp/progmodes/etags.el
@@
-1000,9
+1000,7
@@
See documentation of variable `tags-file-name'."
(defun etags-file-of-tag ()
(save-excursion
- (if (looking-at "./")
- (re-search-forward "\\([^\n]+\\),[0-9]*\n")
- (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n"))
+ (re-search-backward "\f\n\\([^\n]+\\),[0-9]*\n")
(buffer-substring (match-beginning 1) (match-end 1))))